home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / dist / bfd / bfd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-16  |  14.7 KB  |  589 lines

  1. /* Generic BFD library interface and support routines.
  2.    Copyright (C) 1990-1991 Free Software Foundation, Inc.
  3.    Written by Cygnus Support.
  4.  
  5. This file is part of BFD, the Binary File Descriptor library.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* $Id: bfd.c,v 1.44 1992/04/02 07:26:09 gnu Exp $ */
  22.  
  23. /*
  24. SECTION
  25.     <<typedef bfd>>
  26.  
  27.     A BFD is has type <<bfd>>; objects of this type are the
  28.     cornerstone of any application using <<libbfd>>. References
  29.     though the BFD and to data in the BFD give the entire BFD
  30.     functionality.
  31.  
  32.     Here is the struct used to define the type <<bfd>>.  This
  33.     contains he major data about the file, and contains pointers
  34.     to the rest of the data.
  35.  
  36. CODE_FRAGMENT
  37. .
  38. .struct _bfd 
  39. .{
  40. .    {* The filename the application opened the BFD with.  *}
  41. .    CONST char *filename;                
  42. .
  43. .    {* A pointer to the target jump table.             *}
  44. .    struct bfd_target *xvec;
  45. .
  46. .    {* To avoid dragging too many header files into every file that
  47. .       includes `<<bfd.h>>', IOSTREAM has been declared as a "char
  48. .       *", and MTIME as a "long".  Their correct types, to which they
  49. .       are cast when used, are "FILE *" and "time_t".    The iostream
  50. .       is the result of an fopen on the filename. *}
  51. .    char *iostream;
  52. .
  53. .    {* Is the file being cached *}
  54. .
  55. .    boolean cacheable;
  56. .
  57. .    {* Marks whether there was a default target specified when the
  58. .       BFD was opened. This is used to select what matching algorithm
  59. .       to use to chose the back end. *}
  60. .
  61. .    boolean target_defaulted;
  62. .
  63. .    {* The caching routines use these to maintain a
  64. .       least-recently-used list of BFDs *}
  65. .
  66. .    struct _bfd *lru_prev, *lru_next;
  67. .
  68. .    {* When a file is closed by the caching routines, BFD retains
  69. .       state information on the file here: 
  70. .     *}
  71. .
  72. .    file_ptr where;              
  73. .
  74. .    {* and here:*}
  75. .
  76. .    boolean opened_once;
  77. .
  78. .    {* Set if we have a locally maintained mtime value, rather than
  79. .       getting it from the file each time: *}
  80. .
  81. .    boolean mtime_set;
  82. .
  83. .    {* File modified time, if mtime_set is true: *}
  84. .
  85. .    long mtime;          
  86. .
  87. .    {* Reserved for an unimplemented file locking extension.*}
  88. .
  89. .    int ifd;
  90. .
  91. .    {* The format which belongs to the BFD.*}
  92. .
  93. .    bfd_format format;
  94. .
  95. .    {* The direction the BFD was opened with*}
  96. .
  97. .    enum bfd_direction {no_direction = 0,
  98. .                        read_direction = 1,
  99. .                        write_direction = 2,
  100. .                        both_direction = 3} direction;
  101. .
  102. .    {* Format_specific flags*}
  103. .
  104. .    flagword flags;              
  105. .
  106. .    {* Currently my_archive is tested before adding origin to
  107. .       anything. I believe that this can become always an add of
  108. .       origin, with origin set to 0 for non archive files.   *}
  109. .
  110. .    file_ptr origin;             
  111. .
  112. .    {* Remember when output has begun, to stop strange things
  113. .       happening. *}
  114. .    boolean output_has_begun;
  115. .
  116. .    {* Pointer to linked list of sections*}
  117. .    struct sec  *sections;
  118. .
  119. .    {* The number of sections *}
  120. .    unsigned int section_count;
  121. .
  122. .    {* Stuff only useful for object files: 
  123. .       The start address. *}
  124. .    bfd_vma start_address;
  125. .
  126. .    {* Used for input and output*}
  127. .    unsigned int symcount;
  128. .
  129. .    {* Symbol table for output BFD*}
  130. .    struct symbol_cache_entry  **outsymbols;             
  131. .
  132. .    {* Pointer to structure which contains architecture information*}
  133. .    struct bfd_arch_info *arch_info;
  134. .
  135. .    {* Stuff only useful for archives:*}
  136. .    PTR arelt_data;              
  137. .    struct _bfd *my_archive;     
  138. .    struct _bfd *next;           
  139. .    struct _bfd *archive_head;   
  140. .    boolean has_armap;           
  141. .
  142. .    {* Used by the back end to hold private data. *}
  143. .
  144. .    union 
  145. .      {
  146. .      struct aout_data_struct *aout_data;
  147. .      struct artdata *aout_ar_data;
  148. .      struct _oasys_data *oasys_obj_data;
  149. .      struct _oasys_ar_data *oasys_ar_data;
  150. .      struct coff_tdata *coff_obj_data;
  151. .      struct ieee_data_struct *ieee_data;
  152. .      struct ieee_ar_data_struct *ieee_ar_data;
  153. .      struct srec_data_struct *srec_data;
  154. .      struct elf_obj_tdata_struct *elf_obj_data;
  155. .      struct elf_core_tdata_struct *elf_core_data;
  156. .      struct bout_data_struct *bout_data;
  157. .      struct sun_core_struct *sun_core_data;
  158. .      struct trad_core_struct *trad_core_data;
  159. .      PTR any;
  160. .      } tdata;
  161. .  
  162. .    {* Used by the application to hold private data*}
  163. .    PTR usrdata;
  164. .
  165. .    {* Where all the allocated stuff under this BFD goes *}
  166. .    struct obstack memory;
  167. .
  168. .    asymbol **ld_symbols;
  169. .};
  170. .
  171. */
  172.  
  173. #include "bfd.h"
  174. #include "sysdep.h"
  175. #include "libbfd.h"
  176.  
  177. #undef strerror
  178. extern char *strerror();
  179.  
  180.  
  181. CONST short _bfd_host_big_endian = 0x0100;
  182.         /* Accessing the above as (*(char*)&_bfd_host_big_endian), will
  183.            return 1 if the host is big-endian, 0 otherwise.
  184.            (assuming that a short is two bytes long!!!  FIXME)
  185.            (See HOST_IS_BIG_ENDIAN_P in bfd.h.)  */
  186.  
  187. /** Error handling
  188.     o - Most functions return nonzero on success (check doc for
  189.         precise semantics); 0 or NULL on error.
  190.     o - Internal errors are documented by the value of bfd_error.
  191.         If that is system_call_error then check errno.
  192.     o - The easiest way to report this to the user is to use bfd_perror.
  193. */
  194.  
  195. bfd_ec bfd_error = no_error;
  196.  
  197. char *bfd_errmsgs[] = { "No error",
  198.                         "System call error",
  199.                         "Invalid target",
  200.                         "File in wrong format",
  201.                         "Invalid operation",
  202.                         "Memory exhausted",
  203.                         "No symbols",
  204.                         "No relocation info",
  205.                         "No more archived files",
  206.                         "Malformed archive",
  207.                         "Symbol not found",
  208.                         "File format not recognized",
  209.                         "File format is ambiguous",
  210.                         "Section has no contents",
  211.                         "Nonrepresentable section on output",
  212.             "Symbol needs debug section which does not exist",
  213.                         "#<Invalid error code>"
  214.                        };
  215.  
  216. static 
  217. void 
  218. DEFUN(bfd_nonrepresentable_section,(abfd, name),
  219.          CONST  bfd * CONST abfd AND
  220.          CONST  char * CONST name)
  221. {
  222.   printf("bfd error writing file %s, format %s can't represent section %s\n",
  223.          abfd->filename, 
  224.          abfd->xvec->name,
  225.          name);
  226.   exit(1);
  227. }
  228.  
  229. /*ARGSUSED*/
  230. static 
  231. void 
  232. DEFUN(bfd_undefined_symbol,(relent, seclet),
  233.       CONST  arelent *relent AND
  234.       CONST  struct bfd_seclet_struct *seclet)
  235. {
  236.   asymbol *symbol = *(relent->sym_ptr_ptr);
  237.   printf("bfd error relocating, symbol %s is undefined\n",
  238.          symbol->name);
  239.   exit(1);
  240. }
  241. /*ARGSUSED*/
  242. static 
  243. void 
  244. DEFUN(bfd_reloc_value_truncated,(relent, seclet),
  245.          CONST  arelent *relent AND
  246.       struct bfd_seclet_struct *seclet)
  247. {
  248.   printf("bfd error relocating, value truncated\n");
  249.   exit(1);
  250. }
  251. /*ARGSUSED*/
  252. static 
  253. void 
  254. DEFUN(bfd_reloc_is_dangerous,(relent, seclet),
  255.       CONST  arelent *relent AND
  256.      CONST  struct bfd_seclet_struct *seclet)
  257. {
  258.   printf("bfd error relocating, dangerous\n");
  259.   exit(1);
  260. }
  261.  
  262. bfd_error_vector_type bfd_error_vector = 
  263.   {
  264.   bfd_nonrepresentable_section ,
  265.   bfd_undefined_symbol,
  266.   bfd_reloc_value_truncated,
  267.   bfd_reloc_is_dangerous,
  268.   };
  269.  
  270.  
  271. char *
  272. bfd_errmsg (error_tag)
  273.      bfd_ec error_tag;
  274. {
  275. #ifndef errno
  276.   extern int errno;
  277. #endif
  278.   if (error_tag == system_call_error)
  279.     return strerror (errno);
  280.  
  281.   if ((((int)error_tag <(int) no_error) ||
  282.        ((int)error_tag > (int)invalid_error_code)))
  283.     error_tag = invalid_error_code;/* sanity check */
  284.  
  285.   return bfd_errmsgs [(int)error_tag];
  286. }
  287.  
  288.  
  289. void bfd_default_error_trap(error_tag)
  290. bfd_ec error_tag;
  291. {
  292.   printf("bfd assert fail (%s)\n", bfd_errmsg(error_tag));
  293. }
  294.  
  295. void (*bfd_error_trap)() = bfd_default_error_trap;
  296. void (*bfd_error_nonrepresentabltrap)() = bfd_default_error_trap;
  297.  
  298. void
  299. DEFUN(bfd_perror,(message),
  300.       CONST char *message)
  301. {
  302.   if (bfd_error == system_call_error)
  303.     perror((char *)message);            /* must be system error then... */
  304.   else {
  305.     if (message == NULL || *message == '\0')
  306.       fprintf (stderr, "%s\n", bfd_errmsg (bfd_error));
  307.     else
  308.       fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_error));
  309.   }
  310. }
  311.  
  312.  
  313. /** Symbols */
  314.  
  315.  
  316. /*
  317. FUNCTION
  318.     bfd_get_reloc_upper_bound
  319.  
  320. SYNOPSIS
  321.     unsigned int bfd_get_reloc_upper_bound(bfd *abfd, asection *sect);
  322.  
  323. DESCRIPTION
  324.     This function return the number of bytes required to store the
  325.     relocation information associated with section <<sect>>
  326.     attached to bfd <<abfd>>
  327.  
  328. */
  329.  
  330.  
  331. unsigned int
  332. DEFUN(bfd_get_reloc_upper_bound,(abfd, asect),
  333.      bfd *abfd AND
  334.      sec_ptr asect)
  335. {
  336.   if (abfd->format != bfd_object) {
  337.     bfd_error = invalid_operation;
  338.     return 0;
  339.   }
  340.  
  341.   return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
  342. }
  343.  
  344. /*
  345. FUNCTION
  346.     bfd_canonicalize_reloc
  347.  
  348. SYNOPSIS
  349.     unsigned int bfd_canonicalize_reloc
  350.             (bfd *abfd,
  351.         asection *sec,
  352.         arelent **loc,
  353.         asymbol    **syms);
  354.  
  355. DESCRIPTION
  356.     This function calls the back end associated with the open
  357.     <<abfd>> and translates the external form of the relocation
  358.     information attached to <<sec>> into the internal canonical
  359.     form.  The table is placed into memory at <<loc>>, which has
  360.     been preallocated, usually by a call to
  361.     <<bfd_get_reloc_upper_bound>>.
  362.  
  363.     The <<syms>> table is also needed for horrible internal magic
  364.     reasons.
  365.  
  366.  
  367. */
  368. unsigned int
  369. DEFUN(bfd_canonicalize_reloc,(abfd, asect, location, symbols),
  370.      bfd *abfd AND
  371.      sec_ptr asect AND
  372.      arelent **location AND
  373.      asymbol **symbols)
  374. {
  375.     if (abfd->format != bfd_object) {
  376.         bfd_error = invalid_operation;
  377.         return 0;
  378.     }
  379.     return BFD_SEND (abfd, _bfd_canonicalize_reloc,
  380.              (abfd, asect, location, symbols));
  381. }
  382.  
  383.  
  384. /*
  385. FUNCTION
  386.     bfd_set_file_flags
  387.  
  388. SYNOPSIS
  389.     boolean bfd_set_file_flags(bfd *abfd, flagword flags);
  390.  
  391. DESCRIPTION
  392.     This function attempts to set the flag word in the referenced
  393.     BFD structure to the value supplied.
  394.  
  395.     Possible errors are:
  396.     o wrong_format - The target bfd was not of object format.
  397.     o invalid_operation - The target bfd was open for reading.
  398.     o invalid_operation -
  399.     The flag word contained a bit which was not applicable to the
  400.     type of file. eg, an attempt was made to set the D_PAGED bit
  401.     on a bfd format which does not support demand paging
  402.  
  403. */
  404.  
  405. boolean
  406. bfd_set_file_flags (abfd, flags)
  407.      bfd *abfd;
  408.      flagword flags;
  409. {
  410.   if (abfd->format != bfd_object) {
  411.     bfd_error = wrong_format;
  412.     return false;
  413.   }
  414.  
  415.   if (bfd_read_p (abfd)) {
  416.     bfd_error = invalid_operation;
  417.     return false;
  418.   }
  419.  
  420.   if ((flags & bfd_applicable_file_flags (abfd)) != flags) {
  421.     bfd_error = invalid_operation;
  422.     return false;
  423.   }
  424.  
  425.   bfd_get_file_flags (abfd) = flags;
  426. return true;
  427. }
  428.  
  429. /*
  430. FUNCTION
  431.     bfd_set_reloc
  432.  
  433. SYNOPSIS
  434.     void bfd_set_reloc
  435.       (bfd *abfd, asection *sec, arelent **rel, unsigned int count)
  436.  
  437. DESCRIPTION
  438.     This function sets the relocation pointer and count within a
  439.     section to the supplied values.
  440.  
  441. */
  442. /*ARGSUSED*/
  443. void
  444. bfd_set_reloc (ignore_abfd, asect, location, count)
  445.      bfd *ignore_abfd;
  446.      sec_ptr asect;
  447.      arelent **location;
  448.      unsigned int count;
  449. {
  450.   asect->orelocation  = location;
  451.   asect->reloc_count = count;
  452. }
  453.  
  454. void
  455. bfd_assert(file, line)
  456. char *file;
  457. int line;
  458. {
  459.   printf("bfd assertion fail %s:%d\n",file,line);
  460. }
  461.  
  462.  
  463. /*
  464. FUNCTION
  465.     bfd_set_start_address
  466.  
  467. DESCRIPTION
  468.     Marks the entry point of an output BFD.
  469.  
  470. RETURNS
  471.     Returns <<true>> on success, <<false>> otherwise.
  472.  
  473. SYNOPSIS
  474.      boolean bfd_set_start_address(bfd *, bfd_vma);
  475. */
  476.  
  477. boolean
  478. bfd_set_start_address(abfd, vma)
  479. bfd *abfd;
  480. bfd_vma vma;
  481. {
  482.   abfd->start_address = vma;
  483.   return true;
  484. }
  485.  
  486.  
  487. /*
  488. FUNCTION
  489.     The bfd_get_mtime function
  490.  
  491. SYNOPSIS
  492.     long bfd_get_mtime(bfd *);
  493.  
  494. DESCRIPTION
  495.     Return file modification time (as read from file system, or
  496.     from archive header for archive members).
  497.  
  498. */
  499.  
  500. long
  501. bfd_get_mtime (abfd)
  502.      bfd *abfd;
  503. {
  504.   FILE *fp;
  505.   struct stat buf;
  506.  
  507.   if (abfd->mtime_set)
  508.     return abfd->mtime;
  509.  
  510.   fp = bfd_cache_lookup (abfd);
  511.   if (0 != fstat (fileno (fp), &buf))
  512.     return 0;
  513.  
  514.   abfd->mtime = buf.st_mtime;        /* Save value in case anyone wants it */
  515.   return buf.st_mtime;
  516. }
  517.  
  518. /*
  519. FUNCTION
  520.     stuff
  521.  
  522. DESCRIPTION
  523.     stuff which should be documented
  524.  
  525. .#define bfd_sizeof_headers(abfd, reloc) \
  526. .     BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
  527. .
  528. .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
  529. .     BFD_SEND (abfd, _bfd_find_nearest_line,  (abfd, sec, syms, off, file, func, line))
  530. .
  531. .#define bfd_debug_info_start(abfd) \
  532. .        BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
  533. .
  534. .#define bfd_debug_info_end(abfd) \
  535. .        BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
  536. .
  537. .#define bfd_debug_info_accumulate(abfd, section) \
  538. .        BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
  539. .
  540. .#define bfd_stat_arch_elt(abfd, stat) \
  541. .        BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
  542. .
  543. .#define bfd_coff_swap_aux_in(a,e,t,c,i) \
  544. .        BFD_SEND (a, _bfd_coff_swap_aux_in, (a,e,t,c,i))
  545. .
  546. .#define bfd_coff_swap_sym_in(a,e,i) \
  547. .        BFD_SEND (a, _bfd_coff_swap_sym_in, (a,e,i))
  548. .
  549. .#define bfd_coff_swap_lineno_in(a,e,i) \
  550. .        BFD_SEND ( a, _bfd_coff_swap_lineno_in, (a,e,i))
  551. .
  552. .#define bfd_set_arch_mach(abfd, arch, mach)\
  553. .        BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
  554. .
  555. .#define bfd_coff_swap_reloc_out(abfd, i, o) \
  556. .        BFD_SEND (abfd, _bfd_coff_swap_reloc_out, (abfd, i, o))
  557. .
  558. .#define bfd_coff_swap_lineno_out(abfd, i, o) \
  559. .        BFD_SEND (abfd, _bfd_coff_swap_lineno_out, (abfd, i, o))
  560. .
  561. .#define bfd_coff_swap_aux_out(abfd, i, t,c,o) \
  562. .        BFD_SEND (abfd, _bfd_coff_swap_aux_out, (abfd, i,t,c, o))
  563. .
  564. .#define bfd_coff_swap_sym_out(abfd, i,o) \
  565. .        BFD_SEND (abfd, _bfd_coff_swap_sym_out, (abfd, i, o))
  566. .
  567. .#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
  568. .        BFD_SEND (abfd, _bfd_coff_swap_scnhdr_out, (abfd, i, o))
  569. .
  570. .#define bfd_coff_swap_filehdr_out(abfd, i,o) \
  571. .        BFD_SEND (abfd, _bfd_coff_swap_filehdr_out, (abfd, i, o))
  572. .
  573. .#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
  574. .        BFD_SEND (abfd, _bfd_coff_swap_aouthdr_out, (abfd, i, o))
  575. .
  576. .#define bfd_get_relocated_section_contents(abfd, seclet) \
  577. .    BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet))
  578. .
  579. .#define bfd_relax_section(abfd, section, symbols) \
  580. .       BFD_SEND (abfd, _bfd_relax_section, (abfd, section, symbols))
  581.  
  582. */
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.